![]() | ![]() | ![]() | ![]() | ![]() |
There is a syntax error in the example ODM driver program that is bundled with the SAS® Clinical Standards Toolkit 1.6. The program extract_domaindata_all.sas line number 153 is:
if missing(_cstOutputName) then _cstOutputName=cats(compress(Name, 'adk'));
If _cstOutputName is missing, the SASDataset attribute is not set in the source XML file. The _cstOutputName should be set to the value of the Name variable - containing only ASCII characters and digits, so compress statement should be compress(Name, , 'adk'):
if missing(_cstOutputName) then _cstOutputName=cats(compress(Name, ,'adk'));
Product Family | Product | System | Product Release | SAS Release | ||
Reported | Fixed* | Reported | Fixed* | |||
SAS System | SAS Clinical Standards Toolkit | Linux for x64 | 1.6 | 1.6.1 | 9.4 TS1M1 | 9.4 TS1M3 |
Microsoft® Windows® for x64 | 1.6 | 1.6.1 | 9.4 TS1M1 | 9.4 TS1M3 |